home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amigappc / libsrc / stdio / scanf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  179 b   |  12 lines

  1. #include <stdio.h>
  2.  
  3. int scanf(const char *fmt,...)
  4. {
  5.     va_list vl;int n;
  6.     fflush(stdout);
  7.     va_start(vl,fmt);
  8.     n=vfscanf(stdin,fmt,vl);
  9.     va_end(vl);
  10.     return(n);
  11. }
  12.